翻訳と辞書
Words near each other
・ ASSIST (computing)
・ Assist (football)
・ Assist (ice hockey)
・ Assist (Scientology)
・ ASSIST (student exchange organization)
・ Assignment cover sheet
・ Assignment editor
・ Assignment help
・ Assignment in Brittany
・ Assignment in Eternity
・ Assignment in Tomorrow
・ Assignment K
・ Assignment Nor'Dyren
・ Assignment of copyright in software under Indian Copyright Act
・ Assignment of income doctrine
Assignment operator (C++)
・ Assignment problem
・ Assignment Redhead
・ Assignment to Catastrophe
・ Assignment to Kill
・ Assignment Vienna
・ Assignment Zero
・ Assignment – Paris!
・ Assignments Committee (Georgia Senate)
・ Assignor estoppel
・ Assigny
・ Assigny, Cher
・ Assigny, Seine-Maritime
・ ASSIK
・ Assiko


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Assignment operator (C++) : ウィキペディア英語版
Assignment operator (C++)
In the C++ programming language, the assignment operator, '=', is the operator used for assignment. Like most other operators in C++, it can be overloaded.
The copy assignment operator, often just called the "assignment operator", is a special case of assignment operator where the source (right-hand side) and destination (left-hand side) are of the same class type. It is one of the special member functions, which means that a default version of it is generated automatically by the compiler if the programmer does not declare one. The default version performs a memberwise copy, where each member is copied by its own copy assignment operator (which may also be programmer-declared or compiler-generated).
The copy assignment operator differs from the copy constructor in that it must clean up the data members of the assignment's target (and correctly handle self-assignment) whereas the copy constructor assigns values to uninitialized data members. For example:

My_Array first; // initialization by default constructor
My_Array second(first); // initialization by copy constructor
My_Array third = first; // Also initialization by copy constructor
second = third; // assignment by copy assignment operator

==Return value of overloaded assignment operator==

The language permits an overloaded assignment operator to have an arbitrary return type (including void). However, the operator is usually defined to return a reference to the assignee. This is consistent with the behavior of assignment operator for built-in types (returning the assigned value) and allows for using the operator invocation as an expression, for instance in control statements or in chained assignment. Also, the C++ Standard Library requires this behavior for some user-supplied types.〔Working Draft, Standard for Programming Language C++, Section 17.6.3.1, Table 23; http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2012/n3337.pdf〕

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Assignment operator (C++)」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.